home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / raytrace / pov / gen / form04a / formvue.pov < prev    next >
Text File  |  1993-09-24  |  1KB  |  74 lines

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2.  
  3. // This scene file makes a good starting point for developing tests and
  4. // new scene files.  It is also used as the benchmark for the timing tests.
  5.  
  6. #include "colors.inc"
  7. #include "textures.inc"
  8.  
  9. camera {
  10.    location <-40.0  20.0  -80.0>
  11. //   direction <0.0 0.0  1.0>
  12.    up  <0.0  1.0  0.0>
  13.    right <1.33333 0.0 0.0>
  14.    look_at <0 0 0>
  15. }
  16.  
  17. // Light source
  18. object {
  19.    light_source {
  20.       <100 200 -300>
  21.       color White
  22.    }
  23. }
  24.  
  25. // Light source
  26. object {
  27.    light_source {
  28.       <-200 200 -100>
  29.       color White
  30.    }
  31. }
  32.  
  33. // Light source
  34. object {
  35.    light_source {
  36.       <200 200 100>
  37.       color White
  38.    }
  39. }
  40.  
  41.  
  42.  
  43. // Whitish background
  44. object {
  45.    sphere { <0 0 0> 10000 }
  46.    texture {
  47.       ambient 0.6  // Bath it in so much "light" that it doesn't have any shadows
  48.       diffuse 0.7
  49.       color Wheat;
  50.       brilliance 2
  51.    }
  52. }
  53.  
  54. #declare TEXTURE_1 = texture { 
  55.     colour Orange
  56.     phong_size 1
  57.     }
  58.  
  59. composite {
  60.         #include "temp.pov"
  61.         scale <7 7 7>
  62. }
  63.  
  64. // Floor plane , sort of greenish
  65. object {
  66.    plane { <0.0 -1.0 0.0> 0.0 }
  67.    translate <0 -100 0 >
  68.    texture {
  69.      colour HuntersGreen
  70.       ambient 0.15
  71.       diffuse 0.8
  72.    }
  73. }
  74.